reincorporate NEWS, added link to extensions dir in subversion.
authorØyvind Kolås <ok@src.gnome.org>
Sat, 17 Feb 2007 19:45:26 +0000 (19:45 +0000)
committerØyvind Kolås <ok@src.gnome.org>
Sat, 17 Feb 2007 19:45:26 +0000 (19:45 +0000)
* docs/index-static.html.in: reincorporate NEWS, added link to
extensions dir in subversion.

svn path=/trunk/; revision=220

ChangeLog
docs/index-static.html.in

index fcbf9c19017e186a419d54e74bb66c2d6f9512de..bff2bb82f12480a38c7b5b23f34565658a706982 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-02-17  Øyvind Kolås  <pippin@gimp.org>
+
+       * docs/index-static.html.in: reincorporate NEWS, added link to
+       extensions dir in subversion.
+
 2007-02-16  Øyvind Kolås  <pippin@gimp.org>
 
        * babl/babl-fish-path.c: (legal_error), (max_path_length): cache the
index b4e6d01d013bd519371cacb7f5cff78add0c8659..919e0cfd42d126d4e6feafe979e886d02298b143 100644 (file)
 
     <a name='NEWS'></a>
     <h2>News</h2>
-<!--
 <!--NEWS-->
--->
-    <p>See the <a href='http://svn.gnome.org/viewcvs/babl/trunk/ChangeLog?view=markup'>ChangeLog in Subversion</a>.</p>
 
     <a name='Background'></a>
     <h2>Background</h2>
         needs, new ones can be created on the fly. The constructor
         will provide the prior created one if duplicates are registered. </p>
         <pre
-><span class='function'>babl_format_new</span> <span class='paren'>(</span><span class='function'>babl_model</span> <span class='paren'>(</span><span class='string'>"R'G'B'"</span><span class='paren'>)</span>,
-                 <span class='function'>babl_type</span> <span class='paren'>(</span><span class='string'>"u8"</span><span class='paren'>)</span>,
-                 <span class='function'>babl_component</span> <span class='paren'>(</span><span class='string'>"B'"</span><span class='paren'>)</span>,
-                 <span class='function'>babl_component</span> <span class='paren'>(</span><span class='string'>"G'"</span><span class='paren'>)</span>,
-                 <span class='function'>babl_component</span> <span class='paren'>(</span><span class='string'>"R'"</span><span class='paren'>)</span>,
-                 <span class='NULL'>NULL</span><span class='paren'>);</span></pre>
+>format = <span class='function'>babl_format_new</span> <span class='paren'>(</span><span class='function'>babl_model</span> <span class='paren'>(</span><span class='string'>"R'G'B'"</span><span class='paren'>)</span>,
+                          <span class='function'>babl_type</span> <span class='paren'>(</span><span class='string'>"u8"</span><span class='paren'>)</span>,
+                          <span class='function'>babl_component</span> <span class='paren'>(</span><span class='string'>"B'"</span><span class='paren'>)</span>,
+                          <span class='function'>babl_component</span> <span class='paren'>(</span><span class='string'>"G'"</span><span class='paren'>)</span>,
+                          <span class='function'>babl_component</span> <span class='paren'>(</span><span class='string'>"R'"</span><span class='paren'>)</span>,
+                          <span class='NULL'>NULL</span><span class='paren'>);</span></pre>
+
+        <pre
+><span class='function'>babl_process</span> <span class='paren'>(</span><span class='function'>babl_fish</span> <span class='paren'>(</span>source_format, destination_format<span class='paren'>)</span>,
+              source_buffer, destination_buffer,
+              pixel_count<span class='paren'>);</span></pre>
+
 <!--
         <p>Instead of a linear buffer you can an image descriptor which desribes the start of the memory segment, the pitch in bytes between samples, and the rowstride (not used yet,
         use 0 to indicate unlimited for compatibility with future API.)
         <h2>Extending</h2>
         
         <p>For samples of how the current internal API specification of
-        data types, color models, and conversions look in the <tt>extensions/</tt>
+        data types, color models, and conversions look in the <tt><a href='http://svn.gnome.org/viewcvs/babl/trunk/extensions/'>extensions/</a></tt>
         directory. The tables in this HTML file is directly generated
-        based on the data registered by BablCore (double and RGBA), BablBase (core datatypes, and RGB models), 
-        extensions (CIE Lab, naive CMYK, various shortcut conversions). The API's used are very
-        similar in style to the API's described under the <a href='#Usage'>Usage section</a>.
+        based on the data registered by BablCore (double and RGBA), BablBase
+        (core datatypes, and RGB models), extensions (CIE Lab, naive CMYK,
+        various shortcut conversions).<!--The API's used are very
+        similar in style to the API's described under the <a href='#Usage'>Usage section</a>.-->
         </p>
 
         <a name='ColorManagement'></a>